home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Freeware / Adobe Air 1.5 / AdobeAIRInstaller.exe / setup.swf / scripts / mx / skins / halo / BrokenImageBorderSkin.as < prev    next >
Text File  |  2008-10-29  |  755b  |  30 lines

  1. package mx.skins.halo
  2. {
  3.    import flash.display.Graphics;
  4.    import mx.core.mx_internal;
  5.    import mx.skins.ProgrammaticSkin;
  6.    
  7.    use namespace mx_internal;
  8.    
  9.    public class BrokenImageBorderSkin extends ProgrammaticSkin
  10.    {
  11.       
  12.       mx_internal static const VERSION:String = "3.0.0.0";
  13.        
  14.       
  15.       public function BrokenImageBorderSkin()
  16.       {
  17.          super();
  18.       }
  19.       
  20.       override protected function updateDisplayList(param1:Number, param2:Number) : void
  21.       {
  22.          super.updateDisplayList(param1,param2);
  23.          var _loc3_:Graphics = graphics;
  24.          _loc3_.clear();
  25.          _loc3_.lineStyle(1,getStyle("borderColor"));
  26.          _loc3_.drawRect(0,0,param1,param2);
  27.       }
  28.    }
  29. }
  30.